home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Unix / CNews / Source / h / hash.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-11-07  |  329 b   |  15 lines

  1. /*
  2.  * general-purpose in-core hashing, normal interface
  3.  */
  4.  
  5. typedef char *HASHDATUM;            /* #define won't do due to * */
  6.  
  7. #ifndef HASHTABLE
  8. #define HASHTABLE struct hashtable
  9. #endif
  10.  
  11. extern HASHTABLE *hashcreate();
  12. extern hashdestroy(), hashwalk();
  13. extern int hashstore(), hashdelete();
  14. extern HASHDATUM hashfetch(), hashentry();
  15.